home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2004 New Year / INTERNET112.ISO / pc / software / windows / building / easy_php / easyphp16_setup.exe / {app} / phpmyadmin / footer.inc.php < prev    next >
Encoding:
PHP Script  |  2003-09-24  |  534 b   |  32 lines

  1. <?php
  2. /* $Id: footer.inc.php,v 1.14 2002/02/10 09:24:47 loic1 Exp $ */
  3.  
  4.  
  5. // In this file you may add PHP or HTML statements that will be used to define
  6. // the footer for phpMyAdmin pages.
  7.  
  8. /**
  9.  * Close MySql non-persistent connections
  10.  */
  11. if (isset($dbh) && $dbh) {
  12.     @mysql_close($dbh);
  13. }
  14. if (isset($userlink) && $userlink) {
  15.     @mysql_close($userlink);
  16. }
  17. ?>
  18.  
  19. </body>
  20.  
  21. </html>
  22. <?php
  23.  
  24. /**
  25.  * Sends bufferized data
  26.  */
  27. if (isset($cfgOBGzip) && $cfgOBGzip
  28.     && isset($ob_mode) && $ob_mode) {
  29.      PMA_outBufferPost($ob_mode);
  30. }
  31. ?>
  32.